home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-414.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  133 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14326);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2004-0691", "CAN-2004-0692", "CAN-2004-0693");
  13.  
  14.  name["english"] = "RHSA-2004-414: qt";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated qt packages that fix security issues in several of the image
  21.   decoders are now available.
  22.  
  23.   Qt is a software toolkit that simplifies the task of writing and
  24.   maintaining GUI (Graphical User Interface) applications for the X Window
  25.   System.
  26.  
  27.   During a security audit, Chris Evans discovered a heap overflow in the BMP
  28.   image decoder in Qt versions prior to 3.3.3. An attacker could create a
  29.   carefully crafted BMP file in such a way that it would cause an application
  30.   linked with Qt to crash or possibly execute arbitrary code when the file
  31.   was opened by a victim. The Common Vulnerabilities and Exposures project
  32.   (cve.mitre.org) has assigned the name CAN-2004-0691 to this issue.
  33.  
  34.   Additionally, various flaws were discovered in the GIF, XPM, and JPEG
  35.   decoders in Qt versions prior to 3.3.3. An attacker could create carefully
  36.   crafted image files in such a way that it could cause an application linked
  37.   against Qt to crash when the file was opened by a victim. The Common
  38.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the
  39.   names CAN-2004-0692 and CAN-2004-0693 to these issues.
  40.  
  41.   Users of Qt should update to these updated packages which contain
  42.   backported patches and are not vulnerable to these issues.
  43.  
  44.  
  45.  
  46.  
  47. Solution : http://rhn.redhat.com/errata/RHSA-2004-414.html
  48. Risk factor : High';
  49.  
  50.  script_description(english:desc["english"]);
  51.  
  52.  summary["english"] = "Check for the version of the qt packages";
  53.  script_summary(english:summary["english"]);
  54.  
  55.  script_category(ACT_GATHER_INFO);
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  58.  family["english"] = "Red Hat Local Security Checks";
  59.  script_family(english:family["english"]);
  60.  
  61.  script_dependencies("ssh_get_info.nasl");
  62.  
  63.  script_require_keys("Host/RedHat/rpm-list");
  64.  exit(0);
  65. }
  66.  
  67. include("rpm.inc");
  68. if ( rpm_check( reference:"qt-2.3.1-10", release:"RHEL2.1") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73. if ( rpm_check( reference:"qt-designer-2.3.1-10", release:"RHEL2.1") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"qt-devel-2.3.1-10", release:"RHEL2.1") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"qt-static-2.3.1-10", release:"RHEL2.1") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"qt-Xt-2.3.1-10", release:"RHEL2.1") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93. if ( rpm_check( reference:"qt-3.1.2-13.4", release:"RHEL3") )
  94. {
  95.  security_hole(0);
  96.  exit(0);
  97. }
  98. if ( rpm_check( reference:"qt-config-3.1.2-13.4", release:"RHEL3") )
  99. {
  100.  security_hole(0);
  101.  exit(0);
  102. }
  103. if ( rpm_check( reference:"qt-designer-3.1.2-13.4", release:"RHEL3") )
  104. {
  105.  security_hole(0);
  106.  exit(0);
  107. }
  108. if ( rpm_check( reference:"qt-devel-3.1.2-13.4", release:"RHEL3") )
  109. {
  110.  security_hole(0);
  111.  exit(0);
  112. }
  113. if ( rpm_check( reference:"qt-MySQL-3.1.2-13.4", release:"RHEL3") )
  114. {
  115.  security_hole(0);
  116.  exit(0);
  117. }
  118.  
  119. if ( rpm_exists(rpm:"qt-", release:"RHEL2.1") )
  120. {
  121.  set_kb_item(name:"CAN-2004-0691", value:TRUE);
  122.  set_kb_item(name:"CAN-2004-0692", value:TRUE);
  123.  set_kb_item(name:"CAN-2004-0693", value:TRUE);
  124. }
  125. if ( rpm_exists(rpm:"qt-", release:"RHEL3") )
  126. {
  127.  set_kb_item(name:"CAN-2004-0691", value:TRUE);
  128.  set_kb_item(name:"CAN-2004-0692", value:TRUE);
  129.  set_kb_item(name:"CAN-2004-0693", value:TRUE);
  130. }
  131.  
  132. set_kb_item(name:"RHSA-2004-414", value:TRUE);
  133.